home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / Disclaimer / 00009_Accept RollOver.ls < prev    next >
Encoding:
Text File  |  2000-11-10  |  360 b   |  16 lines

  1. on mouseWithin me
  2.   sprite(the currentSpriteNum).foreColor = 70
  3.   put "I agree with the statement above, outlining terms and conditions for the use of this CD-ROM." into member "Infofield"
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave me
  8.   sprite(the currentSpriteNum).foreColor = 255
  9.   cursor(0)
  10.   put EMPTY into member "Infofield"
  11. end
  12.  
  13. on mouseUp
  14.   play movie "Main"
  15. end
  16.